 Description
Description
Used with VALUEMAPRENDERER for matching a range of values within a specified field in a shapefile's DBF table. When a match occurs, the symbol is drawn as specified for each range.
            
            
             Diagram
Diagram
             Overview
Overview
    
        
            |  | 
                    RANGE 1..∞
                    
                        Used with VALUEMAPRENDERER for matching a range of values within a specified field in a shapefile's DBF table. When a match occurs, the symbol is drawn as specified for each range.
                     
                    
                        
                            
                                |  | 
                                        lower required xs:string 
                                            Lower value of range; can be a numeric, string, or date value.
                                         |  
                        
                            
                                |  | 
                                        upper required xs:string 
                                            Upper value of range; can be a numeric, string, or date value.
                                         |  
                        
                            
                                |  | 
                                        label optional xs:string
                                     |  
                        
                            
                                |  | 
                                        Sequence
                                     
                                        
                                            
                                                
                                                    |  | 
                                                            COMPLEXLINESYMBOL
                                                            
                                                                Used to symbolize line features. Provides additional symbology options beyond SIMPLELINESYMBOL.
                                                             |  
                                            
                                                
                                                    |  | 
                                                            COMPLEXPOLYGONSYMBOL
                                                            
                                                                Used to symbolize polygon features. Provides additional symbology options beyond SIMPLEPOLYGONSYMBOL.
                                                             |  
                                            
                                                
                                                    |  | 
                                                            GROUPSYMBOL
                                                            
                                                                Used to symbolize features with multiple symbols acting as a single symbol (e.g., a freeway line symbol consists of a group of 3 line symbols).
                                                             |  
                                            
                                                
                                                    |  | 
                                                            RASTERFILLSYMBOL
                                                            
                                                                Symbolizes polygon features using the specified image as a fill symbol.
                                                             |  
                                            
                                                
                                                    |  | 
                                                            SIMPLEMARKERSYMBOL
                                                            
                                                                Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.
                                                             |  |  | 
    
 Attributes
Attributes
| Name | Type | Use | Default | Fixed | Description | 
|---|
| lower | xs:string | required |  |  | Lower value of range; can be a numeric, string, or date value. | 
| upper | xs:string | required |  |  | Upper value of range; can be a numeric, string, or date value. | 
| label | xs:string | optional |  |  |  | 
 Source
Source
| <xs:element name="RANGE" maxOccurs="unbounded" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Used with VALUEMAPRENDERER for matching a range of values within a specified field in a shapefile's DBF table. When a match occurs, the symbol is drawn as specified for each range.
                  </xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="COMPLEXLINESYMBOL" />
      <xs:element ref="COMPLEXPOLYGONSYMBOL" />
      <xs:element ref="GROUPSYMBOL" />
      <xs:element ref="RASTERFILLSYMBOL" />
      <xs:element ref="RASTERMARKERSYMBOL" />
      <xs:element ref="SIMPLELINESYMBOL" />
      <xs:element ref="SIMPLEMARKERSYMBOL" />
      <xs:element ref="SIMPLEPOLYGONSYMBOL" />
      <xs:element ref="TRUETYPEMARKERSYMBOL" />
    </xs:sequence>
    <xs:attribute use="required" name="lower" type="xs:string">
      <xs:annotation>
        <xs:documentation>Lower value of range; can be a numeric, string, or date value.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute use="required" name="upper" type="xs:string">
      <xs:annotation>
        <xs:documentation>Upper value of range; can be a numeric, string, or date value.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute ref="label" />
  </xs:complexType>
</xs:element> | 
 See Also
See Also